The main Method
public static void main(String[] args) {
    System.setSecurityManager(
         new RMISecurityManager());
    try {
         ComputeServer cs =
             new ComputeServer();
         Naming.rebind("Computer", cs);
    } catch (Exception e) {
         // exception handling
    }
}

Return to Tracks